home *** CD-ROM | disk | FTP | other *** search
- /*
-
- Test file for GCOOPE Version 1.0 by Brian Lee Price
-
- Released as Public Domain July, 1994.
-
- */
-
- #include "gcoope10.h"
-
- #include <stdio.h>
- #include <stdlib.h>
-
-
-
-
-
-
-
-
-
- void main (void)
- {
- object msg1;
- object Stdio;
-
- if(gcInit()) abort();
-
- msg1=g(New)(String,"Hello World!\n");
-
- Stdio=g(New)(StdStream,stdout);
-
- g(Puts)(Stdio,msg1);
-
- }
-